home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / Image / Barcode.php next >
PHP Script  |  2004-03-24  |  3KB  |  69 lines

  1. <?php
  2. /* vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4: */
  3. //
  4. // +----------------------------------------------------------------------+
  5. // | PHP version 4.0                                                      |
  6. // +----------------------------------------------------------------------+
  7. // | Copyright (c) 1997-2001 The PHP Group                                |
  8. // +----------------------------------------------------------------------+
  9. // | This source file is subject to version 3.0 of the PHP license,       |
  10. // | that is bundled with this package in the file LICENSE, and is        |
  11. // | available at through the world-wide-web at                           |
  12. // | http://www.php.net/license/3_0.txt.                                  |
  13. // | If you did not receive a copy of the PHP license and are unable to   |
  14. // | obtain it through the world-wide-web, please send a note to          |
  15. // | license@php.net so we can mail you a copy immediately.               |
  16. // +----------------------------------------------------------------------+
  17. // | Author: Marcelo Subtil Marcal <jason@unleashed.com.br>               |
  18. // +----------------------------------------------------------------------+
  19. //
  20. // $Id: Barcode.php,v 1.1.1.1 2002/11/28 19:28:34 jason Exp $
  21. //
  22.  
  23. require_once("PEAR.php");
  24.  
  25. /**
  26.  * The Image_Barcode class provides method to create barcode using GD library.
  27.  *
  28.  * @access public
  29.  * @author Marcelo Subtil Marcal <jason@conectiva.com.br>
  30.  * @since  PHP 4.2.3
  31.  */
  32. class Image_Barcode extends PEAR
  33. {
  34.     /**
  35.      * Draws a image barcode
  36.      *
  37.      * @param  string $text     A text that should be in the image barcode
  38.      * @param  string $type     The barcode type
  39.      * @param  string $imgtype  The image type that will be generated
  40.      *
  41.      * @return image            The corresponding image barcode
  42.      *
  43.      * @access public
  44.      * @author Marcelo Subtil Marcal <jason@conectiva.com.br>
  45.      * @since  PHP 4.2.3
  46.      */
  47.     function draw($text, $type = 'int25', $imgtype = 'png') {
  48.  
  49.         @include_once("Image/Barcode/${type}.php");
  50.  
  51.         $classname = "Image_Barcode_${type}";
  52.  
  53.         if (!class_exists($classname)) {
  54.             return PEAR::raiseError("Unable to include the Image/Barcode/${type}.php file");
  55.         }
  56.  
  57.         if (!in_array('draw',get_class_methods($classname))) {
  58.             return PEAR::raiseError("Unable to find create method in '$classname' class");
  59.         }
  60.  
  61.         @$obj =& new $classname;
  62.  
  63.         $obj->draw($text, $imgtype);
  64.     }
  65.  
  66. }
  67.  
  68. ?>
  69.